@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Sarala:wght@400;700&display=swap');
    :root {
      --interval:4000;
      --transition:1000ms;
      --accent:#08a0e9;
      --resumeDelay:7000;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body {
      height: 100%;
      width: 100%;
      overflow: hidden;
      font-family: Inter, Arial, sans-serif;
      background: #000;
      color: #fff;
    }
    .slider {
      position: relative;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      touch-action: pan-y;
    }
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity var(--transition) ease-in-out;
    }
    .slide.active {
      opacity: 1;
      z-index: 5;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      background: #000;
    }
    @media (max-aspect-ratio: 3/2) {
      .slide img {
        object-fit: contain;
      }
    }
    @media (min-aspect-ratio: 3/2) {
      .slide img {
        object-fit: cover;
      }
    }
    .nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 1rem;
      z-index: 10;
    }
    .btn {
      background: rgba(0, 0, 0, 0.4);
      color: #fff;
      border: none;
      padding: 1rem;
      font-size: 1.5rem;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .btn:hover { background: rgba(0, 0, 0, 0.7); }
    .dots {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.6rem;
      z-index: 20;
    }
    .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }
    .dot.active {
      background: var(--accent);
      transform: scale(1.4);
    }
